home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Very Best of Atari Inside
/
The Very Best of Atari Inside 1.iso
/
mint
/
mntlib43
/
mntlib
/
tcdrain.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-11
|
252b
|
18 lines
/*
Public domain termios tcdrain() for the MiNT library
10 October 1993 entropy@terminator.rs.itd.umich.edu -- first attempt
*/
#include <errno.h>
#include <types.h>
#include <termios.h>
int
tcdrain(fd)
int fd;
{
errno = -EINVAL;
return -1;
}